Flat π⁰ and η Distribution for High- pT Statistics#2318
Flat π⁰ and η Distribution for High- pT Statistics#2318rashigupt wants to merge 3 commits intoAliceO2Group:masterfrom
Conversation
Flat pion and eta distributions are added to enhance statistics at high transverse momentum.
|
REQUEST FOR PRODUCTION RELEASES: This will add The following labels are available |
|
Dear expert, please merge the code |
Remove CR mode2
There was a problem hiding this comment.
Please check o2_hybrid_gen.py and boxgen class, you are blindly using configuration from Run2
There is no boxgenPi or Eta,
This should be boxgen but check variable carefully
"name": "boxgen",
"config": {
"pdg": 111,
"prange": [0.1, 50.0],
"etarange": [-0.8, 0.8],
"phirange": [0.0, 360.0],
"number": 1
}
},
{
"name": "boxgen",
"config": {
"pdg": 221,
"prange": [0.1, 50.0],
"etarange": [-0.8, 0.8],
"phirange": [0.0, 360.0],
"number": 1
}
}
],
|
okay Thank you for suggestion |
okay i will check variable carefully |
| "prange[1]": 50.0, | ||
| "eta[0]": -0.8, | ||
| "eta[1]": 0.8, | ||
| "number": 1 |
There was a problem hiding this comment.
Dear @rashigupt , thanks a lot for the works. As mentioned by @singhra1994 , could you please confirm the values of the parameter? Or could you please confirm that number: 1 is what you desired? You can find the meaning of these parameters from https://github.com/AliceO2Group/AliceO2/blob/dev/Generators/include/Generators/BoxGenerator.h
There was a problem hiding this comment.
Thank you for your comment.
I have checked the parameters, and number = 1 corresponds to the number of particles generated per event in the BoxGenerator.
My intention here is to enhance the statistics for pion and eta at high momentum using a flat distribution in (p). I noticed that the default value is number = 10.
Could you please advise what value of number would be more appropriate if the goal is to increase the statistics while keeping the distribution flat?
There was a problem hiding this comment.
Hi @rashigupt , I don't know how to achieve the intention you mentioned. I just think 1 particle per event is too few. I don't think it could help you increase the statistics and flatten the distribution. Since all the implementations are in the config files, I would do some tests to see whether it is helpful and validate the settings
Flat pion and eta distributions are added to enhance statistics at high transverse momentum.